Welcome![Sign In][Sign Up]
Location:
Search - share file

Search list

[Internet-Network飞龙DDOS软件2.0测试版

Description:

飞龙DDOS软件2.0测试版

生成器0.h

SkinMagicLib.h

========================================================================
       MICROSOFT FOUNDATION CLASS LIBRARY : 生成器0
========================================================================


AppWizard has created this 生成器0 application for you.  This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.

This file contains a summary of what you will find in each of the files that
make up your 生成器0 application.

生成器0.dsp
    This file (the project file) contains information at the project level and
    is used to build a single project or subproject. Other users can share the
    project (.dsp) file, but they should export the makefiles locally.

生成器0.h
    This is the main header file for the application.  It includes other
    project specific headers (including Resource.h) and declares the
    CMy0App application class.

生成器0.cpp
    This is the main application source file that contains the application
    class CMy0App.

生成器0.rc
    This is a listing of all of the Microsoft Windows resources that the
    program uses.  It includes the icons, bitmaps, and cursors that are stored
    in the RES subdirectory.  This file can be directly edited in Microsoft
 Visual C++.

生成器0.clw
    This file contains information used by ClassWizard to edit existing
    classes or add new classes.  ClassWizard also uses this file to store
    information needed to create and edit message maps and dialog data
    maps and to create prototype member functions.

res\生成器0.ico
    This is an icon file, which is used as the application's icon.  This
    icon is included by the main resource file 生成器0.rc.

res\生成器0.rc2
    This file contains resources that are not edited by Microsoft
 Visual C++.  You should place all resources not editable by
 the resource editor in this file.

 


/////////////////////////////////////////////////////////////////////////////

AppWizard creates one dialog class:

生成器0Dlg.h, 生成器0Dlg.cpp - the dialog
    These files contain your CMy0Dlg class.  This class defines
    the behavior of your application's main dialog.  The dialog's
    template is in 生成器0.rc, which can be edited in Microsoft
 Visual C++.


/////////////////////////////////////////////////////////////////////////////
Other standard files:

StdAfx.h, StdAfx.cpp
    These files are used to build a precompiled header (PCH) file
    named 生成器0.pch and a precompiled types file named StdAfx.obj.

Resource.h
    This is the standard header file, which defines new resource IDs.
    Microsoft Visual C++ reads and updates this file.

/////////////////////////////////////////////////////////////////////////////
Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you
should add to or customize.

If your application uses MFC in a shared DLL, and your application is
in a language other than the operating system's current language, you
will need to copy the corresponding localized resources MFC42XXX.DLL
from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
and rename it to be MFCLOC.DLL.  ("XXX" stands for the language abbreviation.
For example, MFC42DEU.DLL contains resources translated to German.)  If you
don't do this, some of the UI elements of your application will remain in the
language of the operating system.

/////////////////////////////////////////////////////////////////////////////
 


Platform: | Size: 1712698 | Author: fy5388 | Hits:

[Windows Develop简单聊天系统

Description:

========================================================================
       MICROSOFT FOUNDATION CLASS LIBRARY : Talk
========================================================================


AppWizard has created this Talk application for you.  This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.

This file contains a summary of what you will find in each of the files that
make up your Talk application.

Talk.dsp
    This file (the project file) contains information at the project level and
    is used to build a single project or subproject. Other users can share the
    project (.dsp) file, but they should export the makefiles locally.

Talk.h
    This is the main header file for the application.  It includes other
    project specific headers (including Resource.h) and declares the
    CTalkApp application class.

Talk.cpp
    This is the main application source file that contains the application
    class CTalkApp.

Talk.rc
    This is a listing of all of the Microsoft Windows resources that the
    program uses.  It includes the icons, bitmaps, and cursors that are stored
    in the RES subdirectory.  This file can be directly edited in Microsoft
 Visual C++.

Talk.clw
    This file contains information used by ClassWizard to edit existing
    classes or add new classes.  ClassWizard also uses this file to store
    information needed to create and edit message maps and dialog data
    maps and to create prototype member functions.

res\Talk.ico
    This is an icon file, which is used as the application's icon.  This
    icon is included by the main resource file Talk.rc.

res\Talk.rc2
    This file contains resources that are not edited by Microsoft
 Visual C++.  You should place all resources not editable by
 the resource editor in this file.

 


/////////////////////////////////////////////////////////////////////////////

AppWizard creates one dialog class:

TalkDlg.h, TalkDlg.cpp - the dialog
    These files contain your CTalkDlg class.  This class defines
    the behavior of your application's main dialog.  The dialog's
    template is in Talk.rc, which can be edited in Microsoft
 Visual C++.


/////////////////////////////////////////////////////////////////////////////
Other standard files:

StdAfx.h, StdAfx.cpp
    These files are used to build a precompiled header (PCH) file
    named Talk.pch and a precompiled types file named StdAfx.obj.

Resource.h
    This is the standard header file, which defines new resource IDs.
    Microsoft Visual C++ reads and updates this file.

/////////////////////////////////////////////////////////////////////////////
Other notes:

AppWizard uses "TODO:" to indicate parts of the source code you
should add to or customize.

If your application uses MFC in a shared DLL, and your application is
in a language other than the operating system's current language, you
will need to copy the corresponding localized resources MFC42XXX.DLL
from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
and rename it to be MFCLOC.DLL.  ("XXX" stands for the language abbreviation.
For example, MFC42DEU.DLL contains resources translated to German.)  If you
don't do this, some of the UI elements of your application will remain in the
language of the operating system.

/////////////////////////////////////////////////////////////////////////////
 


Platform: | Size: 38661 | Author: roothai | Hits:

[GUI Developbrew window manager

Description:

 

Objective
This topic describes how to create a windowed application that will share the display with other applications.
Brew® MP windowed applications need to be written differently than traditional Brew MP applications. Traditional Brew MP applications, when running in the foreground, occupy full screen space and can modify the display at any time. In the windowing framework, multiple applications share the display at the same time and are not allowed to modify the display arbitrarily. A windowed application also needs to create one or more widgets to be used to create the windows.
A windowed application needs to:
·                  Create and initialize one or more widgets to be passed to IWindowMgr_CreateWindow().
The application can implement its own IWidget, or it can make use of an existing IWidget.
·                  Handle the EVT_APP_START_WINDOW event (and create a window).
·                  Implement handlers for visibility changes, focus changes, and extent changes. The implementation of these handlers is dependent on the details of the application.
·                  Draw in two stages:
·                                  Tell the container that drawing is necessary (ICONTAINER_Invalidate()).
·                                  Draw only when told to draw by the container (IWIDGET_Draw()).
Note: A windowed application should not call any functions that modify IDisplay directly. This includes explicit IDisplay function calls or implicit updates, such as calls to IIMAGE_Draw() or ICONTROL_Redraw(). Drawing should happen only on demand, for example, when IWIDGET_Draw() is called for the widget used to create the window. Existing Widget based applications follow these guidelines and, with minor modifications, can be ported to the windowing framework.
Event handling
A windowed application must respond to these events:
EVT_APP_START_WINDOW and EVT_APP_START
A window-based application receives EVT_APP_START_WINDOW first. If the application returns TRUE for this event, the application does not receive EVT_APP_START. If an application needs to support both the environments (window based and non-window based), it should handle both events.
When the application receives EVT_APP_START_WINDOW, it should create one or more windows.
If creation of IWindowMgr0 fails while handling EVT_APP_START_WINDOW, the application should assume that the platform does not support window-based applications. In this case, the application should return FALSE and continue the application logic in the code for EVT_APP_START.
EVT_APP_SUSPEND and EVT_APP_RESUME
After an application returns TRUE for EVT_APP_START_WINDOW, it will not receive EVT_APP_SUSPEND and EVT_APP_RESUME as non-windowed Brew MP applications do. Instead, the application must check for window status events that are sent to the widget through EVT_WDG_SETPROPERTY events. For EVT_WDG_SETPROPERTY events, wParam indicates which property was set, and dwParam specifies the value of the property. When the AEEWindowMgrExt_PROPEX_STATE property has a value of AEEWindowMgrExt_STATE_VISIBLE, the window is visible.
EVT_WDG_WINDOWSTATUS
The EVT_WDG_WINDOWSTATUS event is sent to a widget to notify it about various window related status messages. AEEWindowStatus.h contains information on the meaning of various status messages.
Sample code location

ZIP filename
Location
Run app
hellowindowapp
Brew MP Library
·                       Download and extract the ZIP file.
·                       Compile the app.
·                       Run it on the Brew MP Simulator.

Example of a windowed application
In the hellowindowapp sample, HelloWindowApp_HandleEvent handles the EVT_APP_START_WINDOW event and creates soft key and pop-up windows:
   case EVT_APP_START_WINDOW:   
      DBGPRINTF("EVT_APP_START_WINDOW");
 
      // Create the softkey and popup windows
      HelloWindowApp_CreateSoftkey(pMe);
      HelloWindowApp_CreateOrActivatePopup(pMe);
 
      // Handling this event tells Brew that we are a windowing
      // application.
      return TRUE;  
HelloWindowApp_CreateSoftkey() creates the soft key widget, sets the color text of the widget, then calls HelloWindowApp_CreateWindow() to create the window.
   WidgetWindow *pWindow = &pMe->softkeyWindow;
  
   if (pWindow->piWindowWidget != NULL) return;
   pWindow->pszDbgName = "Softkey";
   pWindow->pMe = pMe;
  
   (void) ISHELL_CreateInstance(pMe->applet.m_pIShell, AEECLSID_SoftkeyWidget,
            (void **) &pWindow->piWindowWidget);
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WidgetExtent extent = {0, HWA_SOFTKEY_HEIGHT};
      IWidget_SetExtent(pWindow->piWindowWidget, &extent);
   }
  
   (void) IWidget_SetBGColor(pWindow->piWindowWidget, MAKE_RGBA(200,200,200,255));
  
   // Now set the softkeys text
   {
      IWidget *piTextWidget = NULL;
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY1, &piTextWidget);
     
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Hover", TRUE);
      }
      RELEASEIF(piTextWidget);
 
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY2, &piTextWidget);
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Close", TRUE);
      }
      RELEASEIF(piTextWidget);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Softkey);  
HelloWindowApp_CreateWindow() creates the soft key window, as follows:
   int result;
   uint32 winId;
   AEEWindowProp propList[1];
  
   // Set custom window handler
   HANDLERDESC_Init(&pWindow->hdHandler, HelloWindowApp_WindowHandler, pWindow, NULL);
   IWIDGET_SetHandler(pWindow->piWindowWidget, &pWindow->hdHandler);
        
   propList[0].id = AEEWindowMgrExtProp_CLASS;
   propList[0].pbyLen = sizeof(winClass);
   propList[0].pby = (void *) &winClass;
     
   result = IWindowMgr_CreateWindow(pMe->piWindowMgr, (IQI*) (void *) pWindow->piWindowWidget,
      propList, ARR_SIZE(propList), &winId);
 
   if (result != SUCCESS) {
      DBGPRINTF("Window creation failed for %s: %d", pWindow->pszDbgName, result);
      HelloWindowApp_DestroyWindow(pWindow);
   } else {
      DBGPRINTF("Window %s created: id=%d", pWindow->pszDbgName, winId);
   }
HelloWindowApp_CreateOrActivatePopup() creates the widget for the pop-up window, then calls HelloWindowApp_CreateWindow() to create the pop-up window.
   pWindow->piWindowWidget = HelloWindowApp_CreateAndInitImageWidget(
                                pMe,
                                "popups.main" // Image as defined in appinfo.ini
                             );
 
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WExtent extent = {HWA_POPUP_WIDTH, HWA_POPUP_HEIGHT};
      IWIDGET_SetExtent(pWindow->piWindowWidget, &extent);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Popup);
Related information
·                  See Brew MP Widgets Technology Guide: Creating a Widgets application
·                  See Brew MP API Reference

Base version:
Brew MP 1.0
Tested version:
Brew MP 1.0
Phone tested:
No

 

Platform: | Size: 439828 | Author: bluecrest | Hits:

[Windows Developgina源代码

Description: ======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : MyGina ======================================================================== AppWizard has created this MyGina DLL for you. This DLL not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your DLL. This file contains a summary of what you will find in each of the files that make up your MyGina DLL. MyGina.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. MyGina.h This is the main header file for the DLL. It declares the CMyGinaApp class. MyGina.cpp This is the main DLL source file. It contains the class CMyGinaApp. MyGina.rc This is a listing of all of the Microsoft Windows resources that the program uses. It includes the icons, bitmaps, and cursors that are stored in the RES subdirectory. This file can be directly edited in Microsoft Visual C++. MyGina.clw This file contains information used by ClassWizard to edit existing classes or add new classes. ClassWizard also uses this file to store information needed to create and edit message maps and dialog data maps and to create prototype member functions. res\MyGina.rc2 This file contains resources that are not edited by Microsoft Visual C++. You should place all resources not editable by the resource editor in this file. MyGina.def This file contains information about the DLL that must be provided to run with Microsoft Windows. It defines parameters such as the name and description of the DLL. It also exports functions from the DLL. ///////////////////////////////////////////////////////////////////////////// Other standard files: StdAfx.h, StdAfx.cpp These files are used to build a precompiled header (PCH) file named MyGina.pch and a precompiled types file named StdAfx.obj. Resource.h This is the standard header file, which defines new resource IDs. Microsoft Visual C++ reads and updates this file. ///////////////////////////////////////////////////////////////////////////// Other notes: AppWizard uses "TODO:" to indicate parts of the source code you should add to or customize. /////////////////////////////////////////////////////////////////////////////
Platform: | Size: 79845 | Author: mw@nwnu.edu.cn | Hits:

[Software Engineering金山词霸2010牛津旗舰版安装及故障终极解决方案

Description: 应该也适用于特惠版 仅针对XP系统,Win7使用者可参考,未做测试 作者:scmeiqy 本文档仅作为本人安装使用备忘录,如果涉及版权之类的东西,与本人无关. 假如你不小心发现了它,请立即删除 一.安装: 1.使用官方的 http://download.iciba.com/Pw2010_Ultimate/PowerWord2010Oxf_Ultimate.exe 2.破解方法: 使用压缩包:网上有的,里面最新日期应该是20100701 金山词霸2010破解补丁.rar 或者 金山词霸2010牛津旗舰版及激活补丁(解决字典消失).rar 【破解补丁下载地址:http://down.qiannao.com/space/file/lhlc/share/2010/7/23/pojie.rar/.page】 1)先安装金山词霸2010牛津旗舰版,运行30天试用,退出程序 2)删除C:\Documents and Settings\All Users.WINDOWS\Application Data\kingsoft\PowerWord 的文件夹中所有内容 .......................
Platform: | Size: 15224 | Author: asdkfjsd | Hits:

[SourceCodep2p deom

Description: 用VB写的P2P文件共享源程序,供P2P初学者参考,A P2P File Share program writen in C#
Platform: | Size: 899674 | Author: kyo_zy | Hits:

[Windows DevelopVC视图绘制动态曲线图

Description: ======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : TestDrawCurve_26 ======================================================================== AppWizard has created this TestDrawCurve_26 application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your TestDrawCurve_26 application. TestDrawCurve_26.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. TestDrawCurve_26.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CTestDrawCurve_26App application class. TestDrawCurve_26.cpp This is the main application source file that contains the application class CTestDrawCurve_26App. TestDrawCurve_26.rc This is a listing of all of the Microsoft Windows resources that the program uses. It includes the icons, bitmaps, and cursors that are stored in the RES subdirectory. This file can be directly edited in Microsoft Visual C++. TestDrawCurve_26.clw This file contains information used by ClassWizard to edit existing classes or add new classes. ClassWizard also uses this file to store information needed to create and edit message maps and dialog data maps and to create prototype member functions. res\TestDrawCurve_26.ico This is an icon file, which is used as the application's icon. This icon is included by the main resource file TestDrawCurve_26.rc. res\TestDrawCurve_26.rc2 This file contains resources that are not edited by Microsoft Visual C++. You should place all resources not editable by the resource editor in this file. ///////////////////////////////////////////////////////////////////////////// For the main frame window: MainFrm.h, MainFrm.cpp These files contain the frame class CMainFrame, which is derived from CFrameWnd and controls all SDI frame features. res\Toolbar.bmp This bitmap file is used to create tiled images for the toolbar. The initial toolbar and status bar are constructed in the CMainFrame class. Edit this toolbar bitmap using the resource editor, and update the IDR_MAINFRAME TOOLBAR array in TestDrawCurve_26.rc to add toolbar buttons. ///////////////////////////////////////////////////////////////////////////// AppWizard creates one document type and one view: TestDrawCurve_26Doc.h, TestDrawCurve_26Doc.cpp - the document These files contain your CTestDrawCurve_26Doc class. Edit these files to add your special document data and to implement file saving and loading (via CTestDrawCurve_26Doc::Serialize). TestDrawCurve_26View.h, TestDrawCurve_26View.cpp - the view of the document These files contain your CTestDrawCurve_26View class. CTestDrawCurve_26View objects are used to view CTestDrawCurve_26Doc objects. ///////////////////////////////////////////////////////////////////////////// Other standard files: StdAfx.h, StdAfx.cpp These files are used to build a precompiled header (PCH) file named TestDrawCurve_26.pch and a precompiled types file named StdAfx.obj. Resource.h This is the standard header file, which defines new resource IDs. Microsoft Visual C++ reads and updates this file. ///////////////////////////////////////////////////////////////////////////// Other notes: AppWizard uses "TODO:" to indicate parts of the source code you should add to or customize. If your application uses MFC in a shared DLL, and your application is in a language other than the operating system's current language, you will need to copy the corresponding localized resources MFC42XXX.DLL from the Microsoft Visual C++ CD-ROM onto the system or system32 directory, and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation. For example, MFC42DEU.DLL contains resources translated to German.) If you don't do this, some of the UI elements of your application will remain in the language of the operating system. /////////////////////////////////////////////////////////////////////////////
Platform: | Size: 1967656 | Author: xiayang168 | Hits:

[Internet-Network网络硬盘.Net V1.0

Description: 本系统是网络上的个人共享文件系统,支持多人注册使用,可在线上传文件、管理自己的文件,还可设置共享权限,便于将自己的文件同其它人分享,使用方法同资源管理器。管理员可在线管理注册帐号,支持每个用户的单独空间大小设置。特色:登录时验证码控制安全登录;支持大文件及多文件上传;可共享文件,并可设置读写权限;支持文件搜索;每个人可单独设置空间大小。需.Net环境支持。-the network system is the personal file-sharing system to support people registered, and can be used to upload documents online, manage their documents, but also set up shared jurisdiction, to facilitate their documents to share with other people, to use the same resources manager. Administrators can register online account management and support each user a separate space set size. Characteristics : login validation code control of the security login; Support for large files and multiple file uploads; File sharing and may set up literacy competence; Supporting documents search; Everyone can set up separate space size. Need. Net environmental support.
Platform: | Size: 54272 | Author: 杨晟栋 | Hits:

[CSharp使用Des,MD5对字符串,数据文件加密

Description: 使用Des,MD5对字符串,数据文件加密,资源共享我们才能发展,抵制日货-use, MD5 strings, data file encryption, we can share resources development, a boycott of Japanese goods
Platform: | Size: 5120 | Author: scmlk | Hits:

[Internet-Network桃源网络硬盘.Net V1.5

Description: 支持多人注册使用,可在线上传文件、管理自己的文件,还可设置共享权限,便于将自己的文件同其它人分享,使用方法同资源管理器。管理员可在线管理注册帐号,支持每个用户的单独空间大小设置。特色:登录时验证码控制安全登录;支持大文件及多文件上传;可共享文件,并可设置读写权限;支持文件搜索;每个人可单独设置空间大小。需.Net环境支持。-support people registered, and can be used to upload documents online, manage their documents, but also set up shared jurisdiction, to facilitate their documents to share with other people, to use the same resources manager. Administrators can register online account management and support each user a separate space set size. Characteristics : login validation code control of the security login; Support for large files and multiple file uploads; File sharing and may set up literacy competence; Supporting documents search; Everyone can set up separate space size. Need. Net environmental support.
Platform: | Size: 305152 | Author: 赵玉庭 | Hits:

[Compress-Decompress algrithmslzw3

Description: 字符串的压缩与解压,输入一字符串文件,压缩后得一文件,在经解压得原文件。大家一起分享。-string compression and decompression, the importation of a string, in a compressed file, after decompression in the original document. To share with everyone.
Platform: | Size: 64512 | Author: 东方旭 | Hits:

[ARM-PowerPC-ColdFire-MIPSARMSYS

Description: 杭州利宇泰公司的基于44B0的ARMSys开发板上的大量源代码,包括ADC、ARP、彩色LCD、外部中断、以太网底层函数、FAT16文件系统、Flash ROM、GUI软件包、Helloworld程序、IIC接口、扫描键盘、Ping程序、44B0内置RTC示例、SDRAM接口、定时器示例、触摸屏示例、UART示例和uC/OS-II的移植、应用(包括多任务、任务间通信、中断服务程序)、UDP数据传输、USB固件编写等程序代码和工程。一次性共享给大家使用。可以作为其他samsung44B0开发板上应用程序的下载。-Lee Yu-tai Hangzhou-based company 44B0 ARMSys development board of a large number of source code, including the ADC, ARP, color LCD, external interrupts, Ethernet bottom function, FAT16 file system, Flash ROM, GUI packages, Helloworld procedures, IIC interfaces, scanning keyboard, Ping procedures 44B0 built-in RTC example, SDRAM interface, timers example, the touch screen example, UART examples and uC/OS-II transplants, applications (including multitasking, inter-task communication, interrupt service routine), the UDP data transmission, USB firmware preparation procedures code and engineering. One-time use for everyone to share. As other samsung44B0 development board application downloads.
Platform: | Size: 7712768 | Author: 吕旭 | Hits:

[Special Effects《图象分割》

Description: 有很多朋友在找章毓晋的《图像分割》一书电子版。 在这儿贡献给所有搜寻它的朋友们 是djvu格式的,下载一个插件就可以了-many friends want to find the ebook <partition the graphics> here i share it with you,it s formal is djvu, you should download a file to use it
Platform: | Size: 3869696 | Author: 李昊 | Hits:

[Internet-Networkfiled源代码

Description: 主要用于查找共享文件,并在下载共享文件时可支持断点续传-mainly used to locate and share files, and download file-sharing can support HTTP
Platform: | Size: 52224 | Author: 杨轩 | Hits:

[Windows Developstddllinvokerdemosrc

Description: 调用标准DLL函数示例 AppWizard has created this Demo DLL for you. This file contains a summary of what you will find in each of the files that make up your Demo application. Demo.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. Demo.cpp This is the main DLL source file. Demo.h This file contains your DLL exports.-called standard DLL function example+5.0 has created this Demo DLL for you. This file contains a summary of what you will find in each of the files that make up your demo application. Demo.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (. dsp) file, but they should export the makefiles locally. Demo.cpp This is the main source DLL file. This file Demo.h contains your DLL exports.
Platform: | Size: 23552 | Author: 刘珍 | Hits:

[Search Engine点对点我的资源QQ

Description: 点对点文件上传下载软件,带ICQ功能,带搜索引擎功能。 成品简介:朋友就是你最丰富最忠实的资源,这套软件会帮你搜索他共享出来的资源。 功能包括:1、聊天室,透视网上邻居正在做什么;2、交朋友,跟你喜欢的网上邻居结盟做朋友;3、发送文字信息;4、查看他共享的资源:文件夹、收藏夹、朋友名单;5、互联浏览:和朋友连接浏览器,他看到的网站,你同时也看到;6、语音通话:和朋友用话筒及音箱来对话;7、网页量温:安排电脑跟踪你喜爱的网站的最新更新情况。系统优点:1、不用登录服务器和注注册;2、发送的文字信息及文件都经过加密,安全性好;3、对于盟友可分组管理,每人都可以设置不同的共享权限;4、适应大部分防火墙;5、传输语音时清楚连贯。 新版增加了我的资源之信箱警卫,可杀灭邮件病毒。 关键字:点对点 我的资源 QQ PP BT P2P ICQ GOOGLE BAIDU 编辑器:DELPHI7 平  台:Win9x,Win2k/XP/NT,Win2003-peer-to-peer file uploading and downloading software, with features ICQ, with search engines. Product description : your friend is the most abundant resources of the most faithful, the software will help you search out his share of resources. Features include : a, chat rooms, online Perspective neighbors are doing; Two, make friends, with your favorite online friends neighbors alliance; three, send text messages; 4, checking his share of resources : File folders, favorites, friends list; 5, the Internet here : and friends connected browser, he saw the website, you also see; 6. voice : Using a microphone and friends and speakers to dialogue; 7, the temperature website : arrangements computer tracking your favorite site of the latest updates. System advantages : one, and do not have to log s
Platform: | Size: 1932288 | Author: 激活帐号 | Hits:

[Windows Develop256Color2Huidu

Description: 256色转灰度 AppWizard has created this MyDIP application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your MyDIP application. MyDIP.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. MyDIP.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CMyDIPApp application class. MyDIP.cpp This is the main application source file that contains the application class CMyDIPApp.-256 colors turn gray AppWizard has created this MyDIP application for you. This applicationnot only demonstrates the basics of using the Microsoft Foundation classesbut is also a starting point for writing your application.This file contains a summary of what you will find in each of the files thatmake up your MyDIP application.MyDIP.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (. dsp) file, but they should export the makefiles locally.MyDIP.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CMyDIPApp application class.MyDIP.cpp This is the main application source file that contains the application class CMyDIPApp.
Platform: | Size: 39936 | Author: 吴权 | Hits:

[Web Serverwufenguploadclass

Description: 文件上传组件 一个asp组件上传程序,是一个在网上找到的原程序,和大家一起分享-file upload an asp components components upload procedures, is an on-line to find the original procedure, and to share with everyone
Platform: | Size: 141312 | Author: 耿守辉 | Hits:

[Crack Hackjsq0306

Description: 加密 计算器.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. 计算器.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CMyApp application class. 计算器.cpp This is the main application source file that contains the application class CMyApp.-encryption calculator. Dsp This file (the project file) con tains information at the project level and is us ed to build a single project or subproject. Othe r users can share the project (. dsp) file, but they should export the makefiles locally. terms Totalizer. h This is the main header file for the applica tion. It includes other project specific heade rs (including Resource.h) and declares the CMy App application class. Calculator. cpp This is the main application source file that contains the APPLIS ication CMyApp class.
Platform: | Size: 28672 | Author: Liaowj | Hits:

[P2PAresGalaxyV1.9.0

Description: Ares Galaxy是一套非常不错的免费P2P档案分享软件。它拥有搜寻与下载档案速度飞快、自设代理服务器、自订聊天社群、内建多媒体播放器、内建浏览器以及自订媒体柜等等功能。它支持的档案格式非常众多,几乎所有的音乐、影片、图片、文件、软件等都下载得到。 Ares is a free open source file sharing program that enables users to share any digital file including images, audio, video, software, documents, etc. You may now easily publish your files through the Ares decentralized network. As a member of the virtual community, you can search and download just about any file shared by other users. With Ares you can also join chat rooms or host your channel and meet new friends.-Ares Galaxy is a very good free peer-to-peer file-sharing software. It has search and download files fast, self-imposed proxy server, set the chat groups, built-in multimedia player, built-in browser and the media set the counters and so on. It supports very large file format, almost all of the music, film, photographs, documents, software downloads to be so. Ares is a free open source file sharing program t hat enables users to share any digital file incl uding images, audio, video, software, documents, etc. You may now easily publish your files throu gh the Ares decentralized network. As a member o f the virtual community. you can search and download just about any file s hared by other users. With Ares you can also join chat rooms or host your channel and meet new 77.25 nds.
Platform: | Size: 1537024 | Author: 杨阳 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 39 »

CodeBus www.codebus.net